home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / utilities / misc / vs122.lha / Install < prev    next >
Encoding:
Text File  |  1994-12-13  |  1.3 KB  |  92 lines

  1. (complete 0)
  2.  
  3. (
  4.    (set vs-dest
  5.       (tackon 
  6.          (askdir
  7.             (prompt "In which disk or drawer should VoiceShell and utilities be installed?")
  8.             (help @askdir-help)
  9.             (default @default-dest)
  10.          )
  11.          "VoiceShell"
  12.       )
  13.    )
  14.    (makedir vs-dest (infos))
  15.    (set @default-dest vs-dest)
  16. )
  17.  
  18.  
  19. (complete 35)
  20.  
  21. (copyfiles
  22.    (source "VoiceShell/VoiceShell")
  23.    (dest vs-dest)
  24.    (infos)
  25. )
  26.  
  27.  
  28. (complete 41)
  29.  
  30. (copyfiles
  31.    (source "VoiceShell/VSConv")
  32.    (dest vs-dest)
  33. )
  34.  
  35.  
  36. (complete 44)
  37.  
  38. (
  39.    (set vsrexx-dest
  40.       (askdir
  41.          (prompt "Where should the script files be installed?")
  42.          (help @askdir-help)
  43.          (default "REXX:")
  44.       )
  45.    )
  46. )
  47.  
  48. (copyfiles
  49.    (source "VoiceShell/Scripts")
  50.    (dest vsrexx-dest)
  51.    (all)
  52. )
  53.  
  54.  
  55. (complete 56)
  56.  
  57. (
  58.    (set vsguide-dest
  59.       (askdir
  60.          (prompt "Where should the AmigaGuide help files be installed?")
  61.          (help @askdir-help)
  62.          (default "Guide:")
  63.       )
  64.    )
  65. )
  66.  
  67.  
  68. (complete 65)
  69.  
  70. (copyfiles
  71.    (source "VoiceShell/Documents/VoiceShell.guide")
  72.    (dest vsguide-dest)
  73.    (infos)
  74. )
  75.  
  76.  
  77. (complete 93)
  78.  
  79. (copylib
  80.    (prompt "Copying voice.library to LIBS:.")
  81.    (source "VoiceShell/Libs/voice.library")
  82.    (dest "LIBS:")
  83.    (help @copylib-help)
  84.    (confirm)
  85. )
  86.  
  87.  
  88. (complete 100)
  89.  
  90. (exit)
  91.  
  92.